home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / OS / FWToolbx / Include / PRAlert.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.1 KB  |  53 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRAlert.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef PRALERT_H
  11. #define PRALERT_H
  12.  
  13. #ifndef FWALTDEF_H
  14. #include "FWAltDef.h"
  15. #endif
  16.  
  17. #ifndef SLSTRREP_H
  18. #include "SLStrRep.h"
  19. #endif
  20.  
  21. //========================================================================================
  22. // FW_Alert
  23. //========================================================================================
  24.  
  25. #if defined(FW_ODFLIB_IMPORT)
  26. #pragma import on
  27. #elif defined(FW_ODFLIB)
  28. #pragma export on
  29. #endif
  30.  
  31. FW_EXTERN_C_BEGIN
  32.  
  33. FW_AlertResult SL_API FW_PrivAlert(Environment* ev,
  34.                                     FW_HString documentName,
  35.                                     FW_HString message,
  36.                                     FW_ButtonType buttonType,
  37.                                     FW_IconType iconType,
  38.                                     FW_DefaultButton defaultButton,
  39.                                     FW_Boolean beep);
  40.  
  41. FW_EXTERN_C_END
  42.  
  43.  
  44. // For CFM-68K [sfu]
  45.  
  46. #if defined(FW_ODFLIB_IMPORT)
  47. #pragma import off
  48. #elif defined(FW_ODFLIB)
  49. #pragma export off
  50. #endif
  51.  
  52. #endif
  53.